home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / clipper / ks94an.zip / FDELETE.HDR < prev    next >
Text File  |  1994-04-25  |  1KB  |  44 lines

  1. /******************************************************************************
  2.                  The Klipper Library, for CA-Clipper 5.x
  3.         Copyright (c), 1994, Wallace Information Systems Engineering
  4.  
  5. FUNCTION:
  6.  
  7. _FDelete(cFileSpec) --> nNumberFilesDeleted
  8.  
  9. PARAMETERS:
  10.  
  11. cFileSpec : a File spec.  Paths and wildcards OK.
  12.  
  13. SHORT:
  14.  
  15. Delete specified file(s) from drive.
  16.  
  17. DESCRIPTION:
  18.  
  19. _FDelete() Deletes files!
  20.  
  21. NOTE:
  22.  
  23.  
  24.  
  25. EXAMPLE:
  26.  
  27. _FDelete('ABC.DEF')
  28. _FDelete('*.DEF')
  29. _FDelete("*.d??")
  30.  
  31. All three of the above  accomplish the same thing.
  32.  
  33. Clipper's ferase() function does not recognize wildcards.  This function
  34. mends that.
  35.  
  36. All of the above would work equivalently.  The wildcards may "take out"
  37. other files other than ABC.DEF.  For instance, the last one would also
  38. erase ABC.DEG.
  39.  
  40. But, you know DOS filename conventions, right?  I mean, you've READ
  41. the DOS manual, right?  Nudge-Nudge.... wink wink, say no more.
  42.  
  43. ******************************************************************************/
  44.